home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / src / rpclib / chkabort.c < prev    next >
Text File  |  1994-03-09  |  1KB  |  44 lines

  1. RCS_ID_C = "$Id: chkabort.c,v 1.1 1994/03/09 01:36:18 jraja Exp $";
  2. /*
  3.  * chkabort.c -- prevent SA/C default CTRL-C checking
  4.  *
  5.  * Author: jraja <Jarno.Rajahalme@hut.fi>
  6.  *
  7.  * Copyright © 1994 AmiTCP/IP Group, <AmiTCP-Group@hut.fi>
  8.  *                  Helsinki University of Technology, Finland.
  9.  *
  10.  * Created      : Sat Feb 26 15:02:46 1994 jraja
  11.  * Last modified: Sat Feb 26 15:02:46 1994 jraja
  12.  *
  13.  */
  14.  
  15. /****** net.lib/__chkabort ***************************************************
  16.  
  17.     NAME
  18.         __chkabort - replace SAS/C abort checking function with do-nothing
  19.  
  20.     SYNOPSIS
  21.  
  22.         void __regargs __chkabort(void);
  23.  
  24.     FUNCTION
  25.         This function replaces the __chkabort() function of the SAS/C
  26.         library. This is desirable, since the AmiTCP functions break
  27.         with the CTRL-C by default, and this should not be interfered
  28.         with the default SAS/C handling.
  29.  
  30.     NOTES
  31.         This function is SAS/C 6.x specific. Users of any other
  32.         compilers should provide similar functionality themselves.
  33.  
  34.     SEE ALSO
  35.         SAS/C 6.x Library Reference
  36.  
  37. ******************************************************************************
  38. */
  39.  
  40. void __regargs
  41. __chkabort(void)
  42. {
  43. }
  44.